ConcatenateBytes
Type
operator
Summary
Concatenates Left and Right.
Syntax
<Left> & <Right>
Description
The result consists of the bytes of Left followed by those of Right.
Parameters
Name | Type | Description |
---|---|---|
Left | An expression which evaluates to binary data. | |
Right | An expression which evaluates to binary data. |
Value
Name | Type | Description |
---|---|---|
return | Binary data consisting of the value of the left hand expression with the value of the right hand expression appended to the end. |